home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 2: CDPD 1
/
Almathera Ten on Ten - Disc 2: CDPD 1.iso
/
pd
/
051-075
/
074
/
random
/
testrnd.c
< prev
Wrap
C/C++ Source or Header
|
1995-03-13
|
309b
|
20 lines
#include <exec/types.h>
extern LONG rand();
main()
{
WORD x, y, z;
UWORD i, min, max;
printf("Enter the range <X> <Y> <Z> <MIN> <MAX>\n");
scanf("%d %d %d %u %u", &x, &y, &z, &min, &max);
srand( x, y, z );
for (i=1; i <= 20; i++)
{
printf("%ld\n", rand( min, max ) );
}
}